home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / ABUSESRC.ZIP / AbuseSrc / imlib / include / exitproc.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-07  |  247 b   |  16 lines

  1. #ifndef __EXITPROC_HPP_
  2. #define __EXITPROC_HPP_
  3.  
  4. #include <stdlib.h>
  5.  
  6. #ifdef HAVE_ATEXIT
  7. #define exit_proc(x,y) atexit(y)
  8. #elif defined (HAVE_ON_EXIT)
  9. #define exit_proc(x,y) on_exit(x,NULL)
  10. #else
  11. #error no atexit?!?
  12. #endif
  13.  
  14.  
  15. #endif
  16.